/* ===== DARK MODE STYLES ===== */

.dark-mode {
  --bg-primary: #1a1a1a;
  --bg-secondary: #242424;
  --text-primary: #e0e0e0;
  --text-secondary: #b0b0b0;
  --accent-color: #d4af6a;
  --accent-hover: #c5a059;
  --border-color: #333;
  --shadow-light: rgba(255,255,255,0.02);
  --shadow-medium: rgba(255,255,255,0.05);
  --shadow-heavy: rgba(255,255,255,0.08);
  --overlay-dark: rgba(0,0,0,0.7);
  --card-bg: #2a2a2a;
  --footer-bg: #0f0f0f;
  --footer-text: #999;
}

/* ===== DARK MODE TOGGLE BUTTON ===== */
.theme-toggle {
  background: var(--accent-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-left: 20px;
  box-shadow: 0 3px 10px var(--shadow-medium);
}

.theme-toggle:hover {
  background: var(--accent-hover);
  transform: scale(1.1) rotate(15deg);
}

.theme-toggle i {
  transition: transform 0.3s ease;
}

.theme-toggle-mobile {
  background: var(--accent-color);
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 100%;
}

.theme-toggle-mobile:hover {
  background: var(--accent-hover);
}